home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Musique / Quod Libet / quodlibet-3.3.0-installer.exe / bin / pkgutil.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2014-12-31  |  18KB  |  614 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. '''Utilities to support packages.'''
  5. import os
  6. import sys
  7. import imp
  8. import os.path as os
  9. from types import ModuleType
  10. __all__ = [
  11.     'get_importer',
  12.     'iter_importers',
  13.     'get_loader',
  14.     'find_loader',
  15.     'walk_packages',
  16.     'iter_modules',
  17.     'get_data',
  18.     'ImpImporter',
  19.     'ImpLoader',
  20.     'read_code',
  21.     'extend_path']
  22.  
  23. def read_code(stream):
  24.     import marshal as marshal
  25.     magic = stream.read(4)
  26.     if magic != imp.get_magic():
  27.         return None
  28.     None.read(4)
  29.     return marshal.load(stream)
  30.  
  31.  
  32. def simplegeneric(func):
  33.     '''Make a trivial single-dispatch generic function'''
  34.     registry = { }
  35.     
  36.     def wrapper(*args, **kw):
  37.         ob = args[0]
  38.         
  39.         try:
  40.             cls = ob.__class__
  41.         except AttributeError:
  42.             cls = type(ob)
  43.  
  44.         
  45.         try:
  46.             mro = cls.__mro__
  47.         except AttributeError:
  48.             
  49.             try:
  50.                 
  51.                 class cls(cls, object):
  52.                     pass
  53.  
  54.                 mro = cls.__mro__[1:]
  55.             except TypeError:
  56.                 mro = (object,)
  57.             
  58.  
  59.  
  60.         for t in mro:
  61.             if t in registry:
  62.                 return registry[t](*args, **kw)
  63.         else:
  64.             return func(*args, **kw)
  65.  
  66.     
  67.     try:
  68.         wrapper.__name__ = func.__name__
  69.     except (TypeError, AttributeError):
  70.         (None, None)
  71.         (None, None)
  72.  
  73.     
  74.     def register(typ, func = ((None, None), None)):
  75.         if func is None:
  76.             return (lambda f: register(typ, f))
  77.         registry[typ] = None
  78.         return func
  79.  
  80.     wrapper.__dict__ = func.__dict__
  81.     wrapper.__doc__ = func.__doc__
  82.     wrapper.register = register
  83.     return wrapper
  84.  
  85.  
  86. def walk_packages(path = None, prefix = '', onerror = None):
  87.     """Yields (module_loader, name, ispkg) for all modules recursively
  88.     on path, or, if path is None, all accessible modules.
  89.  
  90.     'path' should be either None or a list of paths to look for
  91.     modules in.
  92.  
  93.     'prefix' is a string to output on the front of every module name
  94.     on output.
  95.  
  96.     Note that this function must import all *packages* (NOT all
  97.     modules!) on the given path, in order to access the __path__
  98.     attribute to find submodules.
  99.  
  100.     'onerror' is a function which gets called with one argument (the
  101.     name of the package which was being imported) if any exception
  102.     occurs while trying to import a package.  If no onerror function is
  103.     supplied, ImportErrors are caught and ignored, while all other
  104.     exceptions are propagated, terminating the search.
  105.  
  106.     Examples:
  107.  
  108.     # list all modules python can access
  109.     walk_packages()
  110.  
  111.     # list all submodules of ctypes
  112.     walk_packages(ctypes.__path__, ctypes.__name__+'.')
  113.     """
  114.     
  115.     def seen(p, m = { }):
  116.         if p in m:
  117.             return True
  118.         m[p] = None
  119.  
  120.     for importer, name, ispkg in iter_modules(path, prefix):
  121.         yield (importer, name, ispkg)
  122.         if ispkg:
  123.             
  124.             try:
  125.                 __import__(name)
  126.             except ImportError:
  127.                 if onerror is not None:
  128.                     onerror(name)
  129.                 
  130.             except Exception:
  131.                 if onerror is not None:
  132.                     onerror(name)
  133.                 else:
  134.                     raise 
  135.  
  136.             if not getattr(sys.modules[name], '__path__', None):
  137.                 pass
  138.         path = []
  139.         path = [ p for p in path if seen(p) ]
  140.         for item in walk_packages(path, name + '.', onerror):
  141.             yield item
  142.         
  143.     
  144.  
  145.  
  146. def iter_modules(path = None, prefix = ''):
  147.     """Yields (module_loader, name, ispkg) for all submodules on path,
  148.     or, if path is None, all top-level modules on sys.path.
  149.  
  150.     'path' should be either None or a list of paths to look for
  151.     modules in.
  152.  
  153.     'prefix' is a string to output on the front of every module name
  154.     on output.
  155.     """
  156.     if path is None:
  157.         importers = iter_importers()
  158.     else:
  159.         importers = map(get_importer, path)
  160.     yielded = { }
  161.     for i in importers:
  162.         for name, ispkg in iter_importer_modules(i, prefix):
  163.             if name not in yielded:
  164.                 yielded[name] = 1
  165.                 yield (i, name, ispkg)
  166.                 continue
  167.     
  168.  
  169.  
  170. def iter_importer_modules(importer, prefix = ''):
  171.     if not hasattr(importer, 'iter_modules'):
  172.         return []
  173.     return None.iter_modules(prefix)
  174.  
  175. iter_importer_modules = simplegeneric(iter_importer_modules)
  176.  
  177. class ImpImporter:
  178.     '''PEP 302 Importer that wraps Python\'s "classic" import algorithm
  179.  
  180.     ImpImporter(dirname) produces a PEP 302 importer that searches that
  181.     directory.  ImpImporter(None) produces a PEP 302 importer that searches
  182.     the current sys.path, plus any modules that are frozen or built-in.
  183.  
  184.     Note that ImpImporter does not currently support being used by placement
  185.     on sys.meta_path.
  186.     '''
  187.     
  188.     def __init__(self, path = None):
  189.         self.path = path
  190.  
  191.     
  192.     def find_module(self, fullname, path = None):
  193.         subname = fullname.split('.')[-1]
  194.         if subname != fullname and self.path is None:
  195.             return None
  196.         if None.path is None:
  197.             path = None
  198.         else:
  199.             path = [
  200.                 os.path.realpath(self.path)]
  201.         
  202.         try:
  203.             (file, filename, etc) = imp.find_module(subname, path)
  204.         except ImportError:
  205.             return None
  206.  
  207.         return ImpLoader(fullname, file, filename, etc)
  208.  
  209.     
  210.     def iter_modules(self, prefix = ''):
  211.         if self.path is None or not os.path.isdir(self.path):
  212.             return None
  213.         yielded = None
  214.         import inspect as inspect
  215.         
  216.         try:
  217.             filenames = os.listdir(self.path)
  218.         except OSError:
  219.             filenames = []
  220.  
  221.         filenames.sort()
  222.         for fn in filenames:
  223.             modname = inspect.getmodulename(fn)
  224.             if modname == '__init__' or modname in yielded:
  225.                 continue
  226.             path = os.path.join(self.path, fn)
  227.             ispkg = False
  228.             if not modname and os.path.isdir(path) and '.' not in fn:
  229.                 modname = fn
  230.                 
  231.                 try:
  232.                     dircontents = os.listdir(path)
  233.                 except OSError:
  234.                     dircontents = []
  235.  
  236.                 for fn in dircontents:
  237.                     subname = inspect.getmodulename(fn)
  238.                     if subname == '__init__':
  239.                         ispkg = True
  240.                         break
  241.                         continue
  242.                     continue
  243.             if modname and '.' not in modname:
  244.                 yielded[modname] = 1
  245.                 yield (prefix + modname, ispkg)
  246.                 continue
  247.  
  248.  
  249.  
  250. class ImpLoader:
  251.     '''PEP 302 Loader that wraps Python\'s "classic" import algorithm
  252.     '''
  253.     code = None
  254.     source = None
  255.     
  256.     def __init__(self, fullname, file, filename, etc):
  257.         self.file = file
  258.         self.filename = filename
  259.         self.fullname = fullname
  260.         self.etc = etc
  261.  
  262.     
  263.     def load_module(self, fullname):
  264.         self._reopen()
  265.         
  266.         try:
  267.             mod = imp.load_module(fullname, self.file, self.filename, self.etc)
  268.         finally:
  269.             if self.file:
  270.                 self.file.close()
  271.  
  272.         return mod
  273.  
  274.     
  275.     def get_data(self, pathname):
  276.         return open(pathname, 'rb').read()
  277.  
  278.     
  279.     def _reopen(self):
  280.         if self.file and self.file.closed:
  281.             mod_type = self.etc[2]
  282.             if mod_type == imp.PY_SOURCE:
  283.                 self.file = open(self.filename, 'rU')
  284.             elif mod_type in (imp.PY_COMPILED, imp.C_EXTENSION):
  285.                 self.file = open(self.filename, 'rb')
  286.             
  287.  
  288.     
  289.     def _fix_name(self, fullname):
  290.         if fullname is None:
  291.             fullname = self.fullname
  292.         elif fullname != self.fullname:
  293.             raise ImportError('Loader for module %s cannot handle module %s' % (self.fullname, fullname))
  294.         return fullname
  295.  
  296.     
  297.     def is_package(self, fullname):
  298.         fullname = self._fix_name(fullname)
  299.         return self.etc[2] == imp.PKG_DIRECTORY
  300.  
  301.     
  302.     def get_code(self, fullname = None):
  303.         fullname = self._fix_name(fullname)
  304.         if self.code is None:
  305.             mod_type = self.etc[2]
  306.             if mod_type == imp.PY_SOURCE:
  307.                 source = self.get_source(fullname)
  308.                 self.code = compile(source, self.filename, 'exec')
  309.             elif mod_type == imp.PY_COMPILED:
  310.                 self._reopen()
  311.                 
  312.                 try:
  313.                     self.code = read_code(self.file)
  314.                 finally:
  315.                     self.file.close()
  316.  
  317.             elif mod_type == imp.PKG_DIRECTORY:
  318.                 self.code = self._get_delegate().get_code()
  319.             
  320.         return self.code
  321.  
  322.     
  323.     def get_source(self, fullname = None):
  324.         fullname = self._fix_name(fullname)
  325.         if self.source is None:
  326.             mod_type = self.etc[2]
  327.             if mod_type == imp.PY_SOURCE:
  328.                 self._reopen()
  329.                 
  330.                 try:
  331.                     self.source = self.file.read()
  332.                 finally:
  333.                     self.file.close()
  334.  
  335.             elif mod_type == imp.PY_COMPILED or os.path.exists(self.filename[:-1]):
  336.                 f = open(self.filename[:-1], 'rU')
  337.                 self.source = f.read()
  338.                 f.close()
  339.             
  340.         elif mod_type == imp.PKG_DIRECTORY:
  341.             self.source = self._get_delegate().get_source()
  342.         
  343.         return self.source
  344.  
  345.     
  346.     def _get_delegate(self):
  347.         return ImpImporter(self.filename).find_module('__init__')
  348.  
  349.     
  350.     def get_filename(self, fullname = None):
  351.         fullname = self._fix_name(fullname)
  352.         mod_type = self.etc[2]
  353.         if self.etc[2] == imp.PKG_DIRECTORY:
  354.             return self._get_delegate().get_filename()
  355.         if None.etc[2] in (imp.PY_SOURCE, imp.PY_COMPILED, imp.C_EXTENSION):
  356.             return self.filename
  357.  
  358.  
  359.  
  360. try:
  361.     import zipimport
  362.     from zipimport import zipimporter
  363.     
  364.     def iter_zipimport_modules(importer, prefix = ''):
  365.         dirlist = zipimport._zip_directory_cache[importer.archive].keys()
  366.         dirlist.sort()
  367.         _prefix = importer.prefix
  368.         plen = len(_prefix)
  369.         yielded = { }
  370.         import inspect
  371.         for fn in dirlist:
  372.             if not fn.startswith(_prefix):
  373.                 continue
  374.             fn = fn[plen:].split(os.sep)
  375.             if len(fn) == 2 and fn[1].startswith('__init__.py') and fn[0] not in yielded:
  376.                 yielded[fn[0]] = 1
  377.                 yield (fn[0], True)
  378.             
  379.         if len(fn) != 1:
  380.             continue
  381.         modname = inspect.getmodulename(fn[0])
  382.         if modname == '__init__':
  383.             continue
  384.         if modname and '.' not in modname and modname not in yielded:
  385.             yielded[modname] = 1
  386.             yield (prefix + modname, False)
  387.             continue
  388.  
  389.     iter_importer_modules.register(zipimporter, iter_zipimport_modules)
  390. except ImportError:
  391.     pass
  392.  
  393.  
  394. def get_importer(path_item):
  395.     '''Retrieve a PEP 302 importer for the given path item
  396.  
  397.     The returned importer is cached in sys.path_importer_cache
  398.     if it was newly created by a path hook.
  399.  
  400.     If there is no importer, a wrapper around the basic import
  401.     machinery is returned. This wrapper is never inserted into
  402.     the importer cache (None is inserted instead).
  403.  
  404.     The cache (or part of it) can be cleared manually if a
  405.     rescan of sys.path_hooks is necessary.
  406.     '''
  407.     
  408.     try:
  409.         importer = sys.path_importer_cache[path_item]
  410.     except KeyError:
  411.         for path_hook in sys.path_hooks:
  412.             
  413.             try:
  414.                 importer = path_hook(path_item)
  415.             continue
  416.             except ImportError:
  417.                 continue
  418.             
  419.  
  420.         else:
  421.             importer = None
  422.         sys.path_importer_cache.setdefault(path_item, importer)
  423.  
  424.     if importer is None:
  425.         
  426.         try:
  427.             importer = ImpImporter(path_item)
  428.         except ImportError:
  429.             importer = None
  430.         
  431.  
  432.     return importer
  433.  
  434.  
  435. def iter_importers(fullname = ''):
  436.     '''Yield PEP 302 importers for the given module name
  437.  
  438.     If fullname contains a \'.\', the importers will be for the package
  439.     containing fullname, otherwise they will be importers for sys.meta_path,
  440.     sys.path, and Python\'s "classic" import machinery, in that order.  If
  441.     the named module is in a package, that package is imported as a side
  442.     effect of invoking this function.
  443.  
  444.     Non PEP 302 mechanisms (e.g. the Windows registry) used by the
  445.     standard import machinery to find files in alternative locations
  446.     are partially supported, but are searched AFTER sys.path. Normally,
  447.     these locations are searched BEFORE sys.path, preventing sys.path
  448.     entries from shadowing them.
  449.  
  450.     For this to cause a visible difference in behaviour, there must
  451.     be a module or package name that is accessible via both sys.path
  452.     and one of the non PEP 302 file system mechanisms. In this case,
  453.     the emulation will find the former version, while the builtin
  454.     import mechanism will find the latter.
  455.  
  456.     Items of the following types can be affected by this discrepancy:
  457.         imp.C_EXTENSION, imp.PY_SOURCE, imp.PY_COMPILED, imp.PKG_DIRECTORY
  458.     '''
  459.     if fullname.startswith('.'):
  460.         raise ImportError('Relative module names not supported')
  461.     if '.' in fullname:
  462.         pkg = '.'.join(fullname.split('.')[:-1])
  463.         path = None if pkg not in sys.modules else []
  464.     else:
  465.         for importer in sys.meta_path:
  466.             yield importer
  467.         
  468.         path = sys.path
  469.     for item in path:
  470.         yield get_importer(item)
  471.     
  472.     if '.' not in fullname:
  473.         yield ImpImporter()
  474.  
  475.  
  476. def get_loader(module_or_name):
  477.     '''Get a PEP 302 "loader" object for module_or_name
  478.  
  479.     If the module or package is accessible via the normal import
  480.     mechanism, a wrapper around the relevant part of that machinery
  481.     is returned.  Returns None if the module cannot be found or imported.
  482.     If the named module is not already imported, its containing package
  483.     (if any) is imported, in order to establish the package __path__.
  484.  
  485.     This function uses iter_importers(), and is thus subject to the same
  486.     limitations regarding platform-specific special import locations such
  487.     as the Windows registry.
  488.     '''
  489.     if module_or_name in sys.modules:
  490.         module_or_name = sys.modules[module_or_name]
  491.     if isinstance(module_or_name, ModuleType):
  492.         module = module_or_name
  493.         loader = getattr(module, '__loader__', None)
  494.         if loader is not None:
  495.             return loader
  496.         fullname = None.__name__
  497.     else:
  498.         fullname = module_or_name
  499.     return find_loader(fullname)
  500.  
  501.  
  502. def find_loader(fullname):
  503.     '''Find a PEP 302 "loader" object for fullname
  504.  
  505.     If fullname contains dots, path must be the containing package\'s __path__.
  506.     Returns None if the module cannot be found or imported. This function uses
  507.     iter_importers(), and is thus subject to the same limitations regarding
  508.     platform-specific special import locations such as the Windows registry.
  509.     '''
  510.     for importer in iter_importers(fullname):
  511.         loader = importer.find_module(fullname)
  512.         if loader is not None:
  513.             return loader
  514.     
  515.  
  516.  
  517. def extend_path(path, name):
  518.     """Extend a package's path.
  519.  
  520.     Intended use is to place the following code in a package's __init__.py:
  521.  
  522.         from pkgutil import extend_path
  523.         __path__ = extend_path(__path__, __name__)
  524.  
  525.     This will add to the package's __path__ all subdirectories of
  526.     directories on sys.path named after the package.  This is useful
  527.     if one wants to distribute different parts of a single logical
  528.     package as multiple directories.
  529.  
  530.     It also looks for *.pkg files beginning where * matches the name
  531.     argument.  This feature is similar to *.pth files (see site.py),
  532.     except that it doesn't special-case lines starting with 'import'.
  533.     A *.pkg file is trusted at face value: apart from checking for
  534.     duplicates, all entries found in a *.pkg file are added to the
  535.     path, regardless of whether they are exist the filesystem.  (This
  536.     is a feature.)
  537.  
  538.     If the input path is not a list (as is the case for frozen
  539.     packages) it is returned unchanged.  The input path is not
  540.     modified; an extended copy is returned.  Items are only appended
  541.     to the copy at the end.
  542.  
  543.     It is assumed that sys.path is a sequence.  Items of sys.path that
  544.     are not (unicode or 8-bit) strings referring to existing
  545.     directories are ignored.  Unicode items of sys.path that cause
  546.     errors when used as filenames may cause this function to raise an
  547.     exception (in line with os.path.isdir() behavior).
  548.     """
  549.     if not isinstance(path, list):
  550.         return path
  551.     pname = None.path.join(*name.split('.'))
  552.     sname = os.extsep.join(name.split('.'))
  553.     sname_pkg = sname + os.extsep + 'pkg'
  554.     init_py = '__init__' + os.extsep + 'py'
  555.     path = path[:]
  556.     for dir in sys.path:
  557.         if not isinstance(dir, basestring) or not os.path.isdir(dir):
  558.             continue
  559.         subdir = os.path.join(dir, pname)
  560.         initfile = os.path.join(subdir, init_py)
  561.         if subdir not in path and os.path.isfile(initfile):
  562.             path.append(subdir)
  563.         pkgfile = os.path.join(dir, sname_pkg)
  564.         if os.path.isfile(pkgfile):
  565.             
  566.             try:
  567.                 f = open(pkgfile)
  568.             except IOError:
  569.                 msg = None
  570.                 sys.stderr.write("Can't open %s: %s\n" % (pkgfile, msg))
  571.  
  572.             for line in f:
  573.                 line = line.rstrip('\n')
  574.                 if not line or line.startswith('#'):
  575.                     continue
  576.                 path.append(line)
  577.             
  578.         f.close()
  579.         continue
  580.     
  581.     return path
  582.  
  583.  
  584. def get_data(package, resource):
  585.     """Get a resource from a package.
  586.  
  587.     This is a wrapper round the PEP 302 loader get_data API. The package
  588.     argument should be the name of a package, in standard module format
  589.     (foo.bar). The resource argument should be in the form of a relative
  590.     filename, using '/' as the path separator. The parent directory name '..'
  591.     is not allowed, and nor is a rooted name (starting with a '/').
  592.  
  593.     The function returns a binary string, which is the contents of the
  594.     specified resource.
  595.  
  596.     For packages located in the filesystem, which have already been imported,
  597.     this is the rough equivalent of
  598.  
  599.         d = os.path.dirname(sys.modules[package].__file__)
  600.         data = open(os.path.join(d, resource), 'rb').read()
  601.  
  602.     If the package cannot be located or loaded, or it uses a PEP 302 loader
  603.     which does not support get_data(), then None is returned.
  604.     """
  605.     loader = get_loader(package)
  606.     mod = None if loader is None or not hasattr(loader, 'get_data') else loader.load_module(package)
  607.     if mod is None or not hasattr(mod, '__file__'):
  608.         return None
  609.     parts = None.split('/')
  610.     parts.insert(0, os.path.dirname(mod.__file__))
  611.     resource_name = os.path.join(*parts)
  612.     return loader.get_data(resource_name)
  613.  
  614.